home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / xbtx.lha / Source / TextDisplay.hpp < prev    next >
C/C++ Source or Header  |  1995-10-13  |  4KB  |  116 lines

  1. /*
  2. **    $Id: TextDisplay.hpp 1.5 1995/10/13 11:43:06 olsen Exp olsen $
  3. **
  4. **    :ts=4
  5. */
  6.  
  7. /*
  8.  * Amiga changes copyright © 1995 by Olaf Barthel, All Rights Reserved
  9.  *
  10.  * Redistribution and use in source and binary forms, with or without
  11.  * modification, are permitted provided that the following conditions
  12.  * are met:
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in the
  17.  *    documentation and/or other materials provided with the distribution.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  21.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
  22.  * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  25.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  26.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  27.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  28.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29.  *
  30.  * This software has not been validated by the ``Bundesamt fuer Zulassungen in
  31.  * der Telekommunikation'' of the ``Deutsche Bundepost Telekom'' and thus
  32.  * must not be used for accessing the BTX-Network of the Telekom in Germany.
  33.  *
  34.  * Diese Software hat keine Zulassung durch das Bundesamt fuer Zulassungen in
  35.  * der Telekommunikation der Deutschen Bundespost Telekom und darf daher nicht
  36.  * am Netz der Deutschen Bundespost Telekom in Deutschland betrieben werden.
  37.  */
  38.  
  39. #ifndef _TEXTDISPLAY_HPP
  40. #define _TEXTDISPLAY_HPP 1
  41.  
  42. /****************************************************************************/
  43.  
  44. #include <intuition/intuitionbase.h>
  45. #include <graphics/gfxbase.h>
  46. #include <exec/memory.h>
  47.  
  48. /****************************************************************************/
  49.  
  50. #ifndef _TYPES_HPP
  51. #include "Types.hpp"
  52. #endif
  53.  
  54. #ifndef _BTXDISPLAY_HPP
  55. #include "BTXDisplay.hpp"
  56. #endif
  57.  
  58. /****************************************************************************/
  59.  
  60. class TextDisplay : public BTXDisplay
  61. {
  62.     public:
  63.  
  64.         TextDisplay();
  65.         ~TextDisplay();
  66.  
  67.         LONG    Open(STRPTR PubScreenName,int XScale,int YScale,BOOL DirectRender);
  68.         VOID    Close(VOID);
  69.         VOID    MonitorData(int *btx_rows,int *btx_fontheight) { rows = btx_rows; };
  70.         ULONG    WaitMask(VOID);
  71.         LONG    GetChar(VOID);
  72.         LONG    Waiting(VOID);
  73.         VOID    PutLine(STRPTR Line);
  74.  
  75.         void    xputc(int c,int set,int x,int y,int xdouble,int ydouble,int underline,int diacrit,int fg,int bg);
  76.         void    xclearscreen(void);
  77.         void    xcursor(int x,int y);
  78.         void    define_raw_DRC(int c,unsigned char *data,int bits) {};
  79.         void    define_color(int index,int r,int g,int b) {};
  80.         void    define_DCLUT(int entry,int index) {};
  81.         void    define_fullrow_bg(int row,int index) {};
  82.         void    free_DRCS(void) {};
  83.         void    default_colors(void) {};
  84.  
  85.     private:
  86.  
  87.         struct Window        *Window;
  88.  
  89.         struct InputEvent     Event;
  90.  
  91.         struct MsgPort        *WindowPort;
  92.         ULONG                 WindowMask;
  93.  
  94.         WORD                 WaitingChar;
  95.  
  96.         struct RastPort     *RPort;
  97.  
  98.         UWORD                 FontWidth,
  99.                              FontHeight;
  100.         struct TextFont        *Font;
  101.  
  102.         int                    *rows;
  103.  
  104.         UWORD                 FgPen;
  105.         UWORD                 BgPen;
  106.         UWORD                 MaxPen;
  107.  
  108.         WORD                 PutIndex;
  109.  
  110.         VOID                 PutChar(UBYTE c,int x,int y);
  111.         LONG                 MapKey(struct IntuiMessage *Message);
  112.         ULONG                 FindBestModeID(Tag FirstTag,...);
  113. };
  114.  
  115. #endif    // _TEXTDISPLAY_HPP
  116.